C1.AdoNet.CSV Assembly / C1.DataConnector.AdoNet Namespace / C1RowUpdatingEventArgs<TCommandImpl> Class / C1RowUpdatingEventArgs<TCommandImpl> Constructor
The System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
The System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called.
The type of SQL statement executed.
The System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).

In This Topic
C1RowUpdatingEventArgs<TCommandImpl> Constructor
In This Topic
Initializes a new instance of the C1RowUpdatingEventArgs<TCommandImpl> class.
Syntax
'Declaration
 
Public Function New( _
   ByVal row As DataRow, _
   ByVal command As IDbCommand, _
   ByVal statementType As StatementType, _
   ByVal tableMapping As DataTableMapping _
)
 

Parameters

row
The System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
command
The System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called.
statementType
The type of SQL statement executed.
tableMapping
The System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
See Also